home *** CD-ROM | disk | FTP | other *** search
/ FM Towns: Free Software Collection 4 / FM Towns Free Software Collection 4 - Disc 1.iso / t_os / wstype / source / dropdm.h < prev    next >
C/C++ Source or Header  |  1991-10-18  |  608b  |  24 lines

  1. /***   [dropdm.h]
  2. *
  3. *    For GNU C Compiler (GCC)
  4. *
  5. ***/
  6.  
  7. struct dropdm_t {        /* ドロップダウンメニューに関する構造体 */
  8.     short    ntitle;            /* タイトルの数 */
  9.     short    yt1, yt2;        /* タイトルの上部と下部の座標 */
  10.     short    ym;                /* メニュー上部の座標 */
  11.     struct menu_t    *m;
  12.     char    shadow;            /* メニューに影を付けるか否か */
  13. };
  14. struct menu_t {        /* 各タイトル毎のパラメータ */
  15.     short    xt;        /* タイトルの左端座標 */
  16.     short    wt;        /* タイトルの幅 (ドット単位) */
  17.     short    xm;        /* メニューの左端座標 */
  18.     short    wm;        /* メニューの幅 (文字単位) */
  19.     const char    **name;        /* 各メニューの名前 */
  20.     const char    *mask;
  21. };
  22.  
  23. int        DRPDM_main(int *, int *, struct dropdm_t *);
  24.